home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / SOCKV3.ZIP / WWW.ZIP / $READ.ME next >
Encoding:
Text File  |  1996-03-19  |  1.0 KB  |  38 lines

  1. A number of configuration options have been pre-set within the www project. These are;
  2.  
  3.   WWWPort = '80';
  4.  
  5.     The server will listen on port 80. Make sure that no other servers are listening on
  6.      this port.
  7.  
  8.   HomePath = '.';
  9.  
  10.     The default home path is the same directory from which the project is executed from.
  11.     If you run the www project from c:\sockv3\www and request;
  12.     http://127.0.0.1/index.html then the file will come from c:\sockv3\www\index.html
  13.  
  14.   DefaultHTML = 'index.html';
  15.  
  16.     If no file is specified in the URL then index.html is loaded. For example;
  17.     http://127.0.0.1/
  18.     Would cause the index.html to be retrieved.
  19.  
  20.  
  21. To use this example on a standalone machine...
  22.     
  23.     1) run www.exe
  24.     2) run Netscape or some other browser.
  25.     3) enter:
  26.         http://127.0.0.1
  27.        in the Location, Web Page, or URL field depending on the browser.
  28.     4) index.html should be displayed showing the documentation for the sockets
  29.        component in you're browser window.
  30.  
  31.  
  32. Have fun
  33.  
  34. Gary T. Desrosiers
  35. desrosi@pcnet.com
  36.  
  37.  
  38.